1 //--------------------------------------------------------------------------
3 // Copyright (c) Microsoft Corporation. All rights reserved.
5 // File: MandelbrotFractals.cpp
7 //--------------------------------------------------------------------------
12 using namespace MandelbrotFractals
;
15 int main(array
<System::String
^> ^args
)
17 // Enabling Windows XP visual effects before any controls are created
18 Application::EnableVisualStyles();
19 Application::SetCompatibleTextRenderingDefault(false);
21 // Create the main window and run it
22 Application::Run(gcnew
Form1());